home *** CD-ROM | disk | FTP | other *** search
/ infoROM 17,000 Product Descriptions for Business / infoROM Product Descriptions for Business - ESX Interactive.ISO / argdemos / objdemo / toolkit.exe / TEST_COL.DCL < prev    next >
Encoding:
Text File  |  1992-10-09  |  2.4 KB  |  137 lines

  1. log_col : boxed_row {
  2.     fixed_width = true;
  3.     label = "Logical Colors";
  4.     : button {
  5.         label = "BYLAYER";
  6.         mnemonic = "L";
  7.         key = "256";
  8.     }
  9.     : button {
  10.         label = "BYBLOCK";
  11.         mnemonic = "B";
  12.         key = "000";
  13.     }
  14. }
  15.  
  16. gray_sh : boxed_row {
  17.     fixed_width = true;
  18.     label = "Gray Shades";
  19.     color_palette_250_255;
  20. }
  21.  
  22. first_part1 : column {
  23.     : boxed_row {
  24.         fixed_width = true;
  25.         label = "Standard Colors";
  26.         color_palette_1_9;
  27.     }
  28.     : row {
  29.         gray_sh;
  30.         log_col;
  31.     }
  32. }
  33.  
  34. first_part2 : column {
  35.     : boxed_row {
  36.         fixed_width = true;
  37.         label = "Standard Colors";
  38.         color_palette_1_9;
  39.     }
  40.     gray_sh;
  41. }
  42.  
  43. no_filter : concatenation {
  44.     : spacer { width = 8.7; }
  45.     : text {
  46.         label = "TIMS Choice:";
  47.         alignment = centered;
  48.     }
  49.     : button {
  50.         label = "NO FILTER";
  51.         mnemonic = "N";
  52.         key = "257";
  53.     }
  54. }
  55.  
  56. no_change : concatenation {
  57.     : spacer { width = 8.7; }
  58.     : text {
  59.         label = "TIMS Choice:";
  60.         alignment = centered;
  61.     }
  62.     : button {
  63.         label = "NO CHANGE";
  64.         mnemonic = "N";
  65.         key = "257";
  66.     }
  67. }
  68.  
  69.  
  70. full_color : boxed_column {
  71.     label = "Full Color Palette";
  72.     : image_button {
  73.         key = "hiside";
  74.         width = 40;
  75.         height = 5;
  76.     }
  77.     : image_button {
  78.         key = "loside";
  79.         width = 40;
  80.         height = 5;
  81.     }
  82. }
  83.  
  84. col_edi : row {
  85.     fixed_width = true;
  86.     alignment = centered;
  87.     : edit12_box {
  88.         label = "Color:";
  89.         key = "color_edit";
  90.         allow_accept = true;
  91.     }
  92.     : swatch {
  93.         key = "color_image";
  94.     }
  95. }
  96.  
  97. test_color_filter : dialog {
  98.     label = "Choose a Color";
  99.     first_part1;
  100.     spacer;
  101.     no_filter;
  102.     full_color;
  103.     col_edi;
  104.     ok_cancel;
  105.     errtile;
  106. }
  107.  
  108. test_color_descrp : dialog {
  109.     label = "Choose a Color";
  110.     first_part1;
  111.     spacer;
  112.     no_change;
  113.     full_color;
  114.     col_edi;
  115.     ok_cancel;
  116.     errtile;
  117. }
  118.  
  119. test_color_logcol : dialog {
  120.     label = "Choose a Color";
  121.     first_part1;
  122.     spacer;
  123.     full_color;
  124.     col_edi;
  125.     ok_cancel;
  126.     errtile;
  127. }
  128.  
  129. test_color : dialog {
  130.     label = "Choose a Color";
  131.     first_part2;
  132.     spacer;
  133.     full_color;
  134.     col_edi;
  135.     ok_cancel;
  136.     errtile;
  137. }